{% extends "base.html" %} {% block title %}Doctor Appeals - Admin Panel{% endblock %} {% block content %}

Doctor Appeals

Review and process doctor appeals

Back to Dashboard
{% if appeals %}
Pending Appeals ({{ appeals|length }})
{% for doctor in appeals %} {% endfor %}
Doctor Specialization PMC Code Appeal Count Last Rejection Actions
{{ doctor.user.name[0].upper() }}
{{ doctor.user.name }}
{{ doctor.user.email }}
{{ doctor.specialization }} {{ doctor.pmc_code }} {{ doctor.appeal_count }} {% if doctor.rejection_date %} {{ doctor.rejection_date.strftime('%B %d, %Y at %I:%M:%S %p') }} {% else %} N/A {% endif %}
Review
{% else %}
No Pending Appeals

All appeals have been processed.

View All Doctors
{% endif %}
{% for doctor in appeals %} {% endfor %} {% endblock %}